home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / src / libgplus.262 / libio / strstrea.cc < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-18  |  4.0 KB  |  158 lines

  1. /* This is part of libio/iostream, providing -*- C++ -*- input/output.
  2. Copyright (C) 1993 Free Software Foundation
  3.  
  4. This file is part of the GNU IO Library.  This library is free
  5. software; you can redistribute it and/or modify it under the
  6. terms of the GNU General Public License as published by the
  7. Free Software Foundation; either version 2, or (at your option)
  8. any later version.
  9.  
  10. This library is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. GNU General Public License for more details.
  14.  
  15. You should have received a copy of the GNU General Public License
  16. along with GNU CC; see the file COPYING.  If not, write to
  17. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  
  19. As a special exception, if you link this library with files
  20. compiled with a GNU compiler to produce an executable, this does not cause
  21. the resulting executable to be covered by the GNU General Public License.
  22. This exception does not however invalidate any other reasons why
  23. the executable file might be covered by the GNU General Public License. */
  24.  
  25. /* Written by Per Bothner (bothner@cygnus.com). */
  26.  
  27. #ifdef __GNUG__
  28. #pragma implementation
  29. #endif
  30. #ifndef __MSDOS__
  31. #include "iostreamP.h"
  32. #else
  33. #include "iostreaP.h"
  34. #endif
  35. #include "strstream.h"
  36. #include <string.h>
  37.  
  38. static void* default_alloc(_IO_size_t size)
  39. {
  40.     return (void*)new char[size];
  41. }
  42.  
  43. static void default_free(void* ptr)
  44. {
  45.     delete [] (char*)ptr;
  46. }
  47.  
  48. /* Set to use the _IO_str_jump jumptable, for efficiency */
  49.  
  50. #define SET_STR_JUMPS(STRBUF) \
  51.   (STRBUF)->_jumps = &_IO_str_jumps,\
  52.   (STRBUF)->_vtable() = builtinbuf_vtable;
  53.  
  54. istrstream::istrstream(const char *cp, int n)
  55. {
  56. #ifdef _IO_NEW_STREAMS
  57.   __my_sb.init_readonly (cp, n);
  58.   init (&__my_sb);
  59. #else
  60.   init(new strstreambuf(cp, n));
  61.   _flags &= ~ios::dont_close;
  62. #endif
  63.   SET_STR_JUMPS(_strbuf);
  64. }
  65.  
  66. ostrstream::ostrstream()
  67. {
  68. #ifdef _IO_NEW_STREAMS
  69.   init (&__my_sb);
  70. #else
  71.   init(new strstreambuf());
  72.   _flags &= ~ios::dont_close;
  73. #endif
  74.   SET_STR_JUMPS(_strbuf);
  75. }
  76.  
  77. strstreambase::strstreambase(char *cp, int n, int mode)
  78. #ifdef _IO_NEW_STREAMS
  79. : __my_sb (cp, n,
  80.        (mode == ios::app || mode == ios::ate) ? cp + strlen(cp) : cp)
  81. #endif
  82. {
  83. #ifdef _IO_NEW_STREAMS
  84.   init (&__my_sb);
  85. #else
  86.   char *pstart;
  87.   if (mode == ios::app || mode == ios::ate)
  88.     pstart = cp + strlen(cp);
  89.   else
  90.     pstart = cp;
  91.   init(new strstreambuf(cp, n, pstart));
  92.   _flags &= ~ios::dont_close;
  93. #endif
  94.   SET_STR_JUMPS(_strbuf);
  95. }
  96.  
  97. char *strstreambuf::str()
  98. {
  99.     freeze(1);
  100.     return base();
  101. }
  102.  
  103. _IO_ssize_t strstreambuf::pcount () { return _IO_write_ptr - _IO_write_base; }
  104.  
  105. int strstreambuf::overflow(int c /* = EOF */)
  106. {
  107.   return _IO_str_overflow (this, c);
  108. }
  109.  
  110. int strstreambuf::underflow()
  111. {
  112.   return _IO_str_underflow(this);
  113. }
  114.  
  115.  
  116. void strstreambuf::init_dynamic(_IO_alloc_type alloc, _IO_free_type free,
  117.                 int initial_size)
  118.                 
  119. {
  120.     _s._len = 0;
  121.     if (initial_size < 16)
  122.     initial_size = 16;
  123.     _s._allocate_buffer = alloc ? alloc : default_alloc;
  124.     _s._free_buffer = free ? free : default_free;
  125.     char * buf = (char*)(*_s._allocate_buffer)(initial_size);
  126.     setb(buf, buf + initial_size, 1);
  127.     setp(buf, buf + initial_size);
  128.     setg(buf, buf, buf);
  129. }
  130.  
  131. void strstreambuf::init_static(char *ptr, int size, char *pstart)
  132. {
  133.   _IO_str_init_static (this, ptr, size, pstart);
  134. }
  135.  
  136. void strstreambuf::init_readonly (const char *ptr, int size)
  137. {
  138.   _IO_str_init_readonly (this, ptr, size);
  139. }
  140.  
  141. strstreambuf::~strstreambuf()
  142. {
  143.     if (_IO_buf_base && !(_flags & _IO_USER_BUF))
  144.         (_s._free_buffer)(_IO_buf_base);
  145.     _IO_buf_base = NULL;
  146. }
  147.  
  148. streampos strstreambuf::seekoff(streamoff off, _seek_dir dir,
  149.                     int mode /*=ios::in|ios::out*/)
  150. {
  151.   return _IO_str_seekoff (this, off, convert_to_seekflags(dir, mode));
  152. }
  153.  
  154. int strstreambuf::pbackfail(int c)
  155. {
  156.   return _IO_str_pbackfail (this, c);
  157. }
  158.